check all on voicemail area

Category: Zone BBS Suggestions and Feedback

Post 1 by FlyingPhoenix (move over school!) on Sunday, 24-Feb-2008 3:06:42

ok you can currently check all your messages one at a time, how about a check all command, so that we can delete a bunch at once

Post 2 by rat (star trek rules!) on Sunday, 24-Feb-2008 4:46:23

this is a feature i've asked for in private mail too, i still believe it would be useful for both pages.

Post 3 by TylerK (This site is so "educational") on Sunday, 24-Feb-2008 8:19:54

I think this has already been done. You can check the box next to messages on the voicemail page once you've listened to them and press the Delete Marked Messages button. Same with private mail.

Post 4 by FlyingPhoenix (move over school!) on Monday, 25-Feb-2008 4:55:47

NO I mean a button that checks them all for you so you can delete them all at once

Post 5 by laced-unlaced (Account disabled) on Monday, 25-Feb-2008 14:36:08

i agree justin. good time saving idea!

Post 6 by TylerK (This site is so "educational") on Monday, 25-Feb-2008 18:18:24

I can think of a way that you could do that with JavaScript.

<script language="JavaScript" type="text/JavaScript">
<!--
var count;
let count=document.getElementByID("msg").count;
for (var i=0; i<= count; i++){
document.getElementByID("msg"+i).setAttribute("selected", true);
}
//-->
</script>